@media screen and (max-width: 1080px) {


    /***** Structure *****/
    #theyWearJaw {
        position: relative;
    }
    #theyWearJaw {
        width: auto;
        height: auto;
    }
    #theyWearJaw {
        margin: 20px 0 20px 5px;
    }
    .slider {
        position: relative;
    }
    .sliderContainer {
        transform: translate3d(0, 0, 0);
        transition: transform 0.3s;
    }
    .sliderContainer {
        display: flex;
        flex-wrap: nowrap;
        gap: 5px;
    }
    
    /***** Item *****/
    .sliderContent {
        float: left;
    }
    .sliderItem {
        position: relative;
    }
    .sliderItem {
        height: 400px;
    }
    .sliderItem {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .sliderItem {
        background-color: var(--primary);
    }
    .sliderItem {
        transition: all 0.3s ease-in-out;
    }
    
    /***** Textes *****/
    .sliderItemText {
        padding: 20px 40px;
    }
    .sliderItemText {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .sliderItemText h5 {
        font-family: 'content-font';
        font-size: 14px;
        color: #fff;
    }
    .sliderItemText h3 {
        font-family: 'title-font';
        font-size: 35px;
        font-weight: 400;
        color: #fff;
    }
    .sliderItemText p {
        max-width: 80%;
    }
    .sliderItemText p {
        font-family: 'content-font';
        font-size: 12px;
        line-height: 20px;
        color: #fff;
    }

    /***** Buttons *****/
    .sliderItemButtons {
        margin-top: 10px;
    }
    .sliderItemButtons {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .sliderItemButtons a {
        padding: 5px 15px;
        border-radius: 50px;
        width: fit-content;
    }
    .sliderItemButtons a {
        font-family: 'content-font';
        font-size: 12px;
        line-height: 23px;
        color: #fff;
    }
    .sliderItemButtons a span {
        font-family: 'bold-font';
    }
    .sliderItemButtons .boxrec {
        background-color: var(--secondary);
        border: 1px solid var(--secondary);
        color: #fff;
    }
    .sliderItemButtons .instagram {
        background-color: transparent;
        border: 1px solid #fff;
        color: #fff;
    }
    .sliderItemButtons a:hover {
        background-color: #fff;
        border: 1px solid #fff;
        color: #000;
        transition: .3s ease-in-out;
    }
    
    /***** Gradient *****/
    .sliderGradient {
        position: absolute;
    }
    .sliderGradient {
        width: 100%;
        height: 100%;
    }
    .sliderGradient {
       background: #000;
       background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
    }

    /***** Images *****/
    .sliderItem img {
        position: absolute;
    }
    .sliderItem img {
        width: 100%;
        height: 100%;
    }
    .sliderItem img {
        object-fit: cover;
        object-position: top 0 left 80px;
    }

    /***** z-index *****/
    .sliderItem img {
        z-index: 1;
    }
    .sliderGradient {
        z-index: 2;
    }
    .sliderItemText {
        z-index: 3;
    }


}